home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / sat / msat09.tgz / XPB.H < prev    next >
Text File  |  1994-09-17  |  597b  |  43 lines

  1. /*
  2.     xpb.h
  3.  
  4.     eXperimental Pacsat Broadcast protocol receiver
  5.  
  6.     John Melton
  7.     G0ORX, N6LYT
  8.  
  9.     4 Charlwoods Close
  10.     Copthorne
  11.     West Sussex
  12.     RH10 3QZ
  13.     England
  14.  
  15.     INTERNET:    g0orx@amsat.org
  16.             n6lyt@amsat.org
  17.             john@images.demon.co.uk
  18.             J.D.Melton@slh0613.icl.wins.co.uk
  19. */
  20.  
  21. #define    MAXBUFFER    512
  22. #define    MAXFILES    20        /* G4KLX from 8 */
  23.  
  24. typedef struct HOLE_STR
  25. {
  26.     unsigned    start;
  27.     unsigned    finish;
  28.     struct HOLE_STR    *nextHole;
  29. }
  30. HOLE;
  31.  
  32. typedef struct
  33. {
  34.     unsigned    fileId;
  35.     FILE        *file;
  36.     int        hdrSeen;
  37.     int        fileSize;
  38.     int        holes;
  39.     HOLE        *firstHole;
  40. }
  41. OPENFILES;
  42.  
  43.